home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / util-linux.postinst < prev    next >
Text File  |  2009-10-22  |  1KB  |  45 lines

  1. #! /bin/sh
  2.  
  3. umask 022
  4. set -e
  5.  
  6. install-info --quiet --section "Development" "Development" \
  7.   --description="System V interprocess communication facilities" \
  8.   /usr/share/info/ipc.info.gz
  9. update-alternatives --install /usr/bin/pager pager /bin/more 50 \
  10.   --slave /usr/share/man/man1/pager.1.gz pager.1.gz /usr/share/man/man1/more.1.gz
  11. update-alternatives --install /usr/bin/pager pager /usr/bin/pg 10 \
  12.   --slave /usr/share/man/man1/pager.1.gz pager.1.gz /usr/share/man/man1/pg.1.gz
  13.  
  14. #
  15. #    Check if links to hwclock.sh are present in runlevel "6".
  16. #    If not, remove the ones from runlevel "S" so that
  17. #    update-rc.d will do it's job.
  18. #
  19. if [ ! -f /etc/rc6.d/???hwclock.sh ] && [ ! -f /etc/rc0.d/???hwclock.sh ]
  20. then
  21.     rm -f /etc/rcS.d/???hwclock.sh
  22. fi
  23.  
  24. if [ "$1" = "configure" ] && dpkg --compare-versions "$2" lt "2.14.2-1ubuntu4"; then
  25.     # Remove old init scripts
  26.     update-rc.d -f hwclock.sh remove 2>/dev/null > /dev/null
  27.     update-rc.d -f hwclockfirst.sh remove 2>/dev/null > /dev/null
  28.  
  29.     # Remove adjtime file
  30.     rm -f /etc/adjtime
  31. fi
  32.  
  33. if [ -x /usr/sbin/update-mime ]; then
  34.     update-mime
  35. fi
  36.  
  37. if [ -L /usr/doc/util-linux ] ; then
  38.     rm -f /usr/doc/util-linux
  39. fi
  40.  
  41. # Automatically added by dh_installinit
  42. update-rc.d -f hwclock remove >/dev/null || exit $?
  43. # End automatically added section
  44.  
  45.